home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / sas / Makefile < prev    next >
Encoding:
Makefile  |  1990-05-12  |  366 b   |  15 lines

  1. #
  2. # Set the -DSUN preprocessor variable if this machine puts the
  3. # most significant byte of a number first, and -DVAX if it puts
  4. # the most significant byte last.
  5. #
  6.  
  7. CFLAGS =    -O -DVAX -DLOADER=\"../../../bin/sld\" \
  8.             -DPREPROCESSOR=\"../../../bin/cpp\"
  9.  
  10. ../bin/sas:        parser.o sas.o lexer.o
  11.     $(CC) parser.o sas.o lexer.o -o ../bin/sas
  12.  
  13. clean:
  14.     rm -f *.o ../bin/sas
  15.